home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Compilers⁄Interps
/
GCC 1.37.1r15 Full
/
Sources
/
gdbfiles.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-03-15
|
353 b
|
16 lines
|
[
TEXT/MPS
]
/* Alist matching source file names to GDB filenumbers.
Used in output_source_line. */
struct gdbfile
{
struct gdbfile *next;
char *name; /* name of source file */
int filenum; /* Assigned number */
int nlines; /* # lines generated for this source file */
};
/* Chain of all `struct gdbfile's. */
extern struct gdbfile *gdbfiles;